home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{3C9FDFB5-C3F1-11D1-82B4-EB3D09931551}#1.1#0"; "cshlink.ocx"
- Begin VB.Form frmEx1
- BorderStyle = 3 'Fixed Dialog
- Caption = "Hyperlink Control Example Application"
- ClientHeight = 1575
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5775
- Icon = "frmEx1.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1575
- ScaleWidth = 5775
- StartUpPosition = 2 'CenterScreen
- Begin csHyperlinkCtl.csHyperlink csHyperlink2
- Height = 300
- Left = 120
- TabIndex = 3
- ToolTipText = "This hyperlink doesn't go anywhere."
- Top = 960
- Width = 4230
- _ExtentX = 7461
- _ExtentY = 529
- ForeColor = 255
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- AutoSize = -1 'True
- Caption = "Red Hyperlink That Goes Nowhere!"
- URL = ""
- End
- Begin VB.CommandButton cmdClose
- Cancel = -1 'True
- Caption = "&Close"
- Default = -1 'True
- Height = 375
- Left = 4560
- TabIndex = 1
- Top = 1080
- Width = 1095
- End
- Begin csHyperlinkCtl.csHyperlink csHyperlink1
- Height = 255
- Left = 120
- TabIndex = 0
- ToolTipText = "http://www.charonsoftware.com/activex/hyperlink/ (use whatever tooltip you want)"
- Top = 600
- Width = 4695
- _ExtentX = 8281
- _ExtentY = 450
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Caption = "Click here to go to the Hyperlink Control Home Page"
- URL = "http://www.charonsoftware.com/activex/hyperlink/"
- Alignment = 2
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Caption = "Click on the hyperlink below!"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 240
- TabIndex = 2
- Top = 120
- Width = 4455
- End
- Attribute VB_Name = "frmEx1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdClose_Click()
- Unload Me
- End Sub
-